* which-key
[[http://melpa.org/#/which-key][http://melpa.org/packages/which-key-badge.svg]] [[http://stable.melpa.org/#/which-key][file:http://stable.melpa.org/packages/which-key-badge.svg]]
** What's New
-- Implemented =bottom= as an option for =which-key-show-prefix=, which will show
- the key, page number, and next page key information on the last line of the
- which-key buffer.
-- This is the new default for =which-key-setup-side-window-bottom=. The old
- default, which is still available, used the echo area for this information.
- The echo area is not a good default, because it's not possible to completely
- control what shows there without doing something ugly, so occasionally the
- which-key information will be overwritten. To restore the old default simply
- #+BEGIN_SRC emacs-lisp
- (setq which-key-show-prefix 'echo)
- #+END_SRC
- The function =which-key-show-top-level= was implemented by @iqbalansari
(thanks!) to show top-level key bindings (those not behind a prefix). You can
use =M-x which-key-show-top-level= to try it and bind it to a key if you like.
:group 'which-key
:type 'integer)
-(defcustom which-key-side-window-location 'bottom
+(defcustom which-key-side-window-location 'echo
"Location of which-key popup when `which-key-popup-type' is side-window.
Should be one of top, bottom, left or right. You can also specify
a list of two locations, like (right bottom). In this case, the
(interactive)
(setq which-key-popup-type 'side-window
which-key-side-window-location 'bottom
- which-key-show-prefix 'bottom))
+ which-key-show-prefix 'echo))
;;;###autoload
(defun which-key-setup-minibuffer ()